* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: -1;
}

.container {
    max-width: 1400px;
    min-width: 1200px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-height: 900px;
}

/* 头部样式 */
header {
    width: 100%;
    background-color: white;
}
header .header_box {
    max-width: 1400px;
    min-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 14px;
}

nav ul li a:hover {
    color: #333;
}

/* 热门赛事样式 */
.hot-matches {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.hot-matches h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.matches-slider {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
}

.slider-arrow {
    cursor: pointer;
    color: #999;
    font-size: 16px;
}

.matches-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.match-card {
    width: 300px;
    height: 150px;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.match-card img {
    width: 100%;
    height: 100%;
    object-fit:contain;
    justify-content: center;
}

.match-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.match-teams {
    display: flex;
    align-items: center;
    gap: 20px;
}

.team-logo {
    width: 50px;
    height: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
}

.vs {
    font-size: 14px;
    color: #666;
}

.match-time {
    font-size: 12px;
    color: #999;
}

/* 热门专家样式 */
.hot-experts {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.hot-experts h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.experts-slider {
    display: flex;
    align-items: center;
    gap: 20px;
}

.experts-container {
    display: flex;
    gap: 40px;
}

.expert-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.expert-avatar {
    width: 80px;
    height: 80px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    position: relative;
}
.expert-avatar img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    object-fit: cover;
}

.expert-name {
    font-size: 14px;
    color: #333;
}

/* 热门方案样式 */
.hot-schemes {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.hot-schemes h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.schemes-slider {
    display: flex;
    align-items: center;
    gap: 20px;
}

.schemes-container {
    flex: 1;
}

.schemes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.scheme-card {
    border: 1px solid #e0e0e0;
    padding: 15px;
}

.scheme-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.scheme-avatar {
    width: 50px;
    height: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
}

.scheme-info h3 {
    font-size: 14px;
    font-weight: normal;
    color: #333;
    margin-bottom: 5px;
}

.scheme-title {
    font-size: 12px;
    color: #666;
}

.scheme-details {
    margin-bottom: 15px;
}

.scheme-match {
    width: 100%;
    padding: 8px;
    border: 1px solid #e0e0e0;
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.scheme-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scheme-price {
    font-size: 12px;
    color: #999;
    padding: 5px 10px;
    border: 1px solid #e0e0e0;
}

/* 页脚样式 */
footer {
    width: 100%;
    height: 150px;
    background: #323232;
}
footer a {
    color: #fff;
}
footer .footer_box {
    max-width: 1400px;
    min-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.footer-logo {
    color: white;
    font-size: 24px;
    margin-right: 30px;
}

.footer-info {
    color: white;
    font-size: 14px;
}

/* 政策页面样式 */
.policy-content {
    margin: 0 auto;
    padding: 40px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.policy-content h1 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #ff6b35;
    padding-bottom: 15px;
}

.policy-content h2 {
    color: #ff6b35;
    font-size: 1.8em;
    margin: 40px 0 20px 0;
    border-left: 4px solid #ff6b35;
    padding-left: 15px;
}

.policy-content h3 {
    color: #555;
    font-size: 1.3em;
    margin: 25px 0 15px 0;
}

.policy-content p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
    text-align: justify;
}

.policy-content .intro {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    border-left: 4px solid #007bff;
}

.policy-content .policy-section {
    margin-bottom: 40px;
}

.policy-content .subsection {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.policy-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.policy-content strong {
    color: #333;
    font-weight: 600;
}

/* 关于我们页面样式 */
.about-content {
    margin: 0 auto;
    padding: 40px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-content .about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-content h1 {
    color: #333;
    font-size: 2.8em;
    margin-bottom: 30px;
    border-bottom: 3px solid #ff6b35;
    padding-bottom: 20px;
}

.about-content .intro-text {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 5px solid #ff6b35;
}

.about-content .intro-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.about-content h2 {
    color: #ff6b35;
    font-size: 2em;
    margin: 50px 0 30px 0;
    text-align: center;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
}

.about-content h3 {
    color: #333;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.about-content p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.05em;
}

.about-content .feature-item {
    background: #f8f9fa;
    padding: 25px;
    margin: 20px 0;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-content .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-content .advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.about-content .advantage-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.about-content .advantage-item:hover {
    border-color: #ff6b35;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}

.about-content .advantage-item h3 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.about-content .conclusion-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    text-align: center;
}

.about-content .conclusion-text p {
    color: white;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.about-content .conclusion-text strong {
    font-size: 1.3em;
    font-weight: 600;
}

.about-content .cta-text {
    font-size: 1.2em;
    font-weight: 600;
    margin-top: 25px;
    opacity: 0.9;
}