* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "微软雅黑", sans-serif;
}
body {
    background-color: #fff;
}
.header {
    background-color: #73c342;
    color: #fff;
    padding: 12px 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header h1 {
    font-size: 18px;
    font-weight: normal;
}
.header .icons {
    position: absolute;
    right: 15px;
    display: flex;
    gap: 10px;
}
.banner {
    background-color: #e60012;
    color: #fff;
    text-align: center;
}
.banner .province {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}
.banner .title {
    font-size: 20px;
    margin-bottom: 8px;
}
.banner .en-title {
    font-size: 12px;
    letter-spacing: 1px;
}
.medals {
    display: flex;
    justify-content: space-around;
    padding: 10px 15px;
    background-color: #fff;
}
.medal {
    width: 22%;
    height: auto;
    border: 1px solid #d4af37;
    border-radius: 4px;
}
.form-section {
    padding: 20px 15px;
}
.form-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}
.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.form-group label {
    width: 100px;
    font-size: 15px;
    color: #333;
}
.form-group input, .form-group select {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    color: #666;
    padding: 5px 0;
    background-color: white; /* 或者 transparent */
    appearance: none; /* 去除默认样式 */
}
.form-group .arrow {
    color: #999;
    font-size: 18px;
    margin-left: 5px;
}
.submit-btn {
    width: 100%;
    height: 45px;
    background-color: #ccc;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    margin-top: 10px;
}



.submit-btn.active {
    background-color: #4CAF50; /* 绿色 */
    cursor: pointer;
}