/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
	background: url('../images/bg1.gif');
}

.container {
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    /**padding: 20px;**/
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.banner {
    background: url('../images/banner.png');
    width: 100%;
    height: 350px;
    /**margin-bottom: 40px;**/
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 5em;
    font-weight: bold;
}

.banner::before {
    content: "長歌墨香";
}

.sidebar, .sidebar-right {
    width: 20%;
    float: left;
    padding: 20px;
    box-sizing: border-box;
}

.sidebar {
    background: #2d2d2d;
    color: #fff;
    background: url('../images/bar_bg.png');
}

.sidebar a, .sidebar-right a {
    color: #673737;
    text-decoration: none;
    display: block;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s;
}

.sidebar a:hover, .sidebar-right a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar .download,.sidebar .download:hover{
	width:205px;
	height:74px;
	padding: 0;
    background: url('../images/col_download.gif');
}
.sidebar .charge,.sidebar .charge:hover{
	width:205px;
	height:74px;
	padding: 0;
    background: url('../images/col_PayOnline.gif');
}
.sidebar .help,.sidebar .help:hover{
	width:205px;
	height:74px;
	padding: 0;
    background: url('../images/col_help.gif');
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 5px 0;
}

.sidebar img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

.content {
    width: 60%;
    float: left;
    padding: 20px;
    box-sizing: border-box;
}

h2 {
    color: #2d2d2d;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    /*border: 30px solid transparent; *//* 设置边框宽度 */
    -moz-border-image: url('../images/bar_title.gif') 30 round; /* Firefox */
    -webkit-border-image: url('../images/bar_title.gif') 30 round; /* Safari 和 Chrome */
    -o-border-image: url('../images/bar_title.gif') 30 round; /* Opera */
    border-image: url('../images/bar_title.gif') 30 round; /* 标准语法 */
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.form-container {
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	width: 300px;
}
.form-group {
	margin-bottom: 15px;
}
.form-group label {
	display: block;
	font-weight: bold;
	margin-bottom: 5px;
}
.form-group input,
.form-group select {
	width: 100%;
	padding: 8px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 4px;
}
.form-group input:focus,
.form-group select:focus {
	border-color: #80bdff;
	outline: none;
	box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
}
.form-group button {
	width: 100%;
	padding: 10px;
	background-color: #007bff;
	border: none;
	border-radius: 4px;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
}
.form-group button:hover {
	background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        width: 95%;
    }
}

@media (max-width: 900px) {
    .sidebar, .content, .sidebar-right {
        width: 100%;
        float: none;
    }

    .sidebar, .sidebar-right {
        margin-bottom: 40px;
    }
}