* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-image: url("./images/background.webp");
}

header {
    width: 100%;
    padding-top: 20px;
    background-color: white;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;

}

.bar_background {
    position: relative;
    z-index: 0;
}

.bar_background::before {
    content: "";
    position: absolute;
    top: 100px;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent transparent;
    transform-origin: bottom right;
}

.bar_background::before {
    right: -70px;
    border-width: 0 0 1000px 1000px;
    border-color: transparent transparent transparent #ffd70f;
    transform: rotate(45deg);
    z-index: -1;
}


header h1 {
    font-size: 70px;
    text-shadow: 3px 3px 5px rgb(255, 255, 255);
    color: rgb(255, 0, 0);
}

#logo_bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
    cursor: pointer;
    z-index: -1;
}

#logo_bar img {
    max-width: 10%;
    min-width: 100px;
    margin-right: 10px;
}

nav {
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 10px;
    display: flex;
}

nav li {
    margin: 0 10px;
}

nav a {
    text-decoration: none;
    font-size: 28px;
    background-color: rgb(180, 0, 0);
    color: #ffffff;
    border: 1px solid #b80000;
    padding: 10px;
    border-radius: 10px;
    text-shadow: 1px 1px 5px rgb(255, 255, 255);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

nav a:hover {
    background-color: rgb(150, 0, 0);
    transform: scale(1.05);
}

.nav-item a:hover{
    font-size: 30px;
}

.stage {
    height: auto;
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(20px);
    text-align: center;
    margin: 20px;
}

.stage h1 {
    padding: 10px;
    font-size: 70px;
    text-shadow: 5px 5px 5px rgb(99, 99, 99);
    color: rgb(255, 255, 255);
    text-align: center;
}

.stage h2 {
    padding: 10px;
    font-size: 60px;
    text-shadow: 5px 5px 5px rgb(99, 99, 99);
    color: rgb(255, 255, 255);
    text-align: center;
}

.reward-container {
    display: flex;
    justify-content: center;
    height: 300px;
}

.reward {
    width: auto;
    padding: 20px;
}

.apply {
    height: auto;
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(20px);
    text-align: center;
    margin: 20px;
    color: white;
    padding: 10px;
    line-height: 1.5;
}

.apply h1 {
    font-size: 60px;
    text-shadow: 3px 3px 3px rgb(99, 99, 99);
    color: rgb(255, 255, 255);
    text-align: center;
}

.link_to_lottery {
    color: white;
    text-decoration: none;
    font-size: 30px;
    background-color: rgba(110, 0, 144, 0.536);
    border-radius: 20px;
    padding: 5px 15px;
    width: 30%;
    margin: 0 auto;
    display: block;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: rgba(104, 0, 139, 0.571) 3px solid;
}

.link_to_lottery:hover {
    background-color: rgb(64, 0, 117);
    transform: scale(1.05);
}

.card {
    height: auto;
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(20px);
    text-align: center;
    margin: 20px;
    color: white;
    padding: 10px;
    line-height: 1.5;
    background-blend-mode: multiply;
    background-color: rgb(0, 0, 0, 0.3);
}

.card p {
    font-size: 30px;
    padding: 2px 20px;
    font-style: 微軟正黑體;
}

.card h1 {
    font-size: 40px;
    text-shadow: 5px 5px 5px rgb(0, 107, 173);
    color: rgb(255, 255, 255);
    text-align: center;
    margin-bottom: 10px;
}

footer {
    background-color: rgb(0, 0, 0);
    color: white;
    text-align: center;
    padding: 5px;
    margin-top: 0px;
    position: relative;
    overflow: hidden;
}

/* Responsive */
@media screen and (max-width: 700px) {
    header {
        width: 100%;
        padding-top: 5px;
        background-color: white;
        padding-bottom: 5px;
        position: relative;
        overflow: hidden;

    }

    header h1 {
        font-size: 40px;
        margin-bottom: -20px;
    }

    nav {
        display: flex;
        justify-content: center;
    }

    nav ul {
        list-style: none;
        padding: 0px;
        margin-bottom: 10px;
        display: flex;
    }

    nav li {
        margin: 0 2px;
    }

    nav a {
        font-size: 14px;
    }


    .stage {
        margin: 0px;
        overflow: hidden;
    }

    .stage h1 {
        font-size: 50px;
        text-shadow: 5px 5px 5px rgb(99, 99, 99);
        color: rgb(255, 255, 255);
        text-align: center;
    }

    .stage h2 {
        font-size: 35px;
        text-shadow: 5px 5px 5px rgb(99, 99, 99);
        color: rgb(255, 255, 255);
        text-align: center;
    }

    .reward-container {
        flex-direction: row;
        align-items: center;
        height: auto;
    }

    .reward {
        margin-top: 10px;
        min-width: 300px;
    }

    .apply h1 {
        font-size: 40px;
        text-shadow: 5px 5px 5px rgb(0, 107, 173);
        color: rgb(255, 255, 255);
        text-align: center;
        margin-bottom: 10px;
    }

    .apply {
        margin: 10px 0px;
    }

    .link_to_lottery {
        color: white;
        text-decoration: none;
        font-size: 30px;
        background-color: rgba(110, 0, 144, 0.536);
        border-radius: 10px;
        display: block;
        width: auto;
        margin: 0px 20px;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: rgba(104, 0, 139, 0.571) 3px solid;
        padding-top: 15px;
    }

    .qrcode {
        display: none;
    }

    .card {
        color: #ffffff;
        padding: 0px;
        margin: 0px;
        background-blend-mode: multiply;
        background-color: rgb(0, 0, 0, 0.3);
    }

    .card p {
        font-size: 20px;
        padding: 2px 20px;
        font-style: 微軟正黑體;
    }

    .card h1 {
        font-size: 40px;
        text-shadow: 5px 5px 5px rgb(0, 107, 173);
        color: rgb(255, 255, 255);
        text-align: center;
        margin-bottom: 10px;
    }
}



/* Animation */

section {
    padding: 0rem;
    max-width: 100%;
    margin: 0 auto;
}

h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.application-button {
    text-align: center;
    margin: 2rem 0;
}

.application-button .btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
}

.highlight-text {
    color: #ff0000;
    font-size: 1.5rem;
    margin: 2rem 0;
}

.checklist {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.check-item {
    color: #FFFFFF;
    position: relative;
    font-size: 1.2rem;
}

.check-icon {
    color: #00FF00;
    position: absolute;
    left: 0;
}

.notice {
    background: rgba(181, 5, 5, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.notice p {
    color: #ffffff;
    margin: 0;
    font-size: 1.1rem;
}

.notice strong {
    color: #ff0000;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.step-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.step-item h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 0;
    padding: 0.5rem 0;
}

@media screen and (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .step-item {
        padding: 1rem;
    }

    .step-item h4 {
        font-size: 1rem;
    }
}

.application-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.application-content h1 {
    color: #FFD700;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.online-application,
.paper-application {
    margin-bottom: 3rem;
}

.online-application h2,
.paper-application h2 {
    color: white;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.application-button {
    text-align: center;
    margin: 2rem 0;
}

.application-button .btn-danger {
    background: linear-gradient(45deg, #FF0000, #CC0000);
    padding: 15px 30px;
    font-size: 1.5rem;
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.application-button .btn-danger:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #CC0000, #FF0000);
}

.application-notice {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
}

.check-list {
    list-style: none;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
}

.check-list li {
    color: #FFFFFF;
    position: relative;
    font-size: 1.2rem;
    padding-bottom: 1rem;
}

.dealer-notice {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    color: #FFD700;
}

.steps-grid {
    margin-top: 3rem;
}

.step-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-row_2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
}

.step-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.step-item p {
    color: white;
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .application-content {
        padding: 1rem;
    }

    .step-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-row_2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .application-content h1 {
        font-size: 2rem;
    }

    .online-application h2,
    .paper-application h2 {
        font-size: 1.5rem;
    }

    .check-list li {
        font-size: 1rem;
    }

    .btn-danger {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .application-notice {
        padding: 1rem;
    }
}

.resources-section {
    background-color: black;
    padding: 2rem 0;
}

.resources-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.left-menu,
.sports-data {
    width: 100%;
}

/* 左側選單樣式 */
.left-menu h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.resource-links {
    list-style: none;
    padding: 0;
}


.resource-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.resource-links a:hover {
    color: #ffd700;
}

/* 中間賽事資訊樣式 */
.sports-news h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.more-link {
    color: #ffd700;
    text-decoration: none;
    font-size: 1rem;
}

.news-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-item {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
}

.news-item img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
}

.news-content h4 {
    color: white;
    font-size: 1rem;
    margin: 0;
}

/* 右側運動數據樣式 */
.sports-data h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.data-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.data-btn {
    background-color: #ffd700;
    border: none;
    padding: 0.8rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.data-btn:hover {
    background-color: #ffed4a;
}

/* 響應式設計 */
@media screen and (max-width: 1024px) {
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .news-items {
        gap: 1rem;
    }

    .data-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

@media screen and (max-width: 768px) {
    .news-item {
        flex-direction: column;
    }

    .news-item img {
        width: 100%;
        height: 150px;
    }

    .data-buttons {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1002;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #ff0000;
}

.nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    z-index: 1002;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.step-item img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.step-item img:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    .nav-btn {
        padding: 0px;
        font-size: 24px;
        background: rgba(255, 255, 255, 0.4);
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        z-index: 1002;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .close-btn {
        top: 10px;
        right: 15px;
        font-size: 40px;
        background: rgba(255, 255, 255, 0.2);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .modal-content {
        max-width: 100%;
        max-height: 80vh;
        margin: 0 10px;
    }

    /* 防止手機上的觸摸事件引起意外縮放 */
    .step-item img {
        touch-action: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    nav a:hover {

        transform: none;
    }
}

/* 添加觸摸滑動動畫 */
.modal-content {
    transition: transform 0.3s ease-out;
}

/* Banner Slider Styles */
#banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner-slider {
    width: 100%;
    height: auto;
}

.swiper-slide {
    width: 100%;
    height: auto;
}

.swiper-slide .pic {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.swiper-slide .pic img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px;
    color: #000;
}

/* Responsive Banner Styles */
@media screen and (max-width: 768px) {
    .swiper-slide .pic {
        height: auto;
    }

    .swiper-slide .pic img {
        width: 100%;
        height: auto;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 16px;
    }
}

/* 彈出視窗樣式 */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.8);
    /* 灰色背景，透明度 0.8 */
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-content {
    position: relative;
    background-color: transparent;
    padding: 20px;
    width: 50%;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content .text-center {
    width: 100%;
}

.popup-content img {
    width: 90%;
    height: auto;
    display: block;
    object-fit: contain;
}

.popup-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transform: translate(50%, -50%);
}

.popup-close svg {
    width: 20px;
    height: 20px;
}

.popup-close:hover {
    background-color: #f0f0f0;
}

/* 響應式設計 */
@media screen and (max-width: 768px) {
    .popup-content {
        width: 90%;
    }
}

/* Circle Section Styles */
.circle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;

}

.circle-background {
    padding: 1rem;
    background-image: url('https://0800666.com/wp-content/uploads/2023/05/bg03.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.circle-item-text {
    color: #ffdd00;
    font-size: 25px;
    text-align: center;
    font-weight: bold;
}

.circle-item {
    text-align: center;
    width: 300px;
}

.circle-item a {
    text-decoration: none;
    color: white;
    display: block;
    transition: transform 0.3s ease;
}

.circle-item a:hover {
    transform: scale(1.05);
}

.circle-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    background: #fff;
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.circle-item h3 {
    color: white;
    font-size: 1.5rem;
    margin-top: 1rem;
    text-align: center;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .circle-container {
        gap: 1rem;
        padding: 1rem;
    }

    .circle-item {
        width: 150px;
    }

    .circle-image {
        width: 150px;
        height: 150px;
    }

    .circle-item h3 {
        font-size: 1rem;
    }
}

/* Change Agent Section Styles */
.notice-container {
    padding: 2rem;

}

.change-title {
    color: #fff;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.change-image {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.change-image img {
    width: 100%;
    height: auto;
    display: block;
}

.change-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.change-button {
    display: block;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.change-button:hover {
    transform: scale(1.02);
}

.change-button.red {
    background-color: #dc3545;
    color: white;
}

.change-button.yellow {
    background-color: #ffc107;
    color: black;
}

.change-button.green {
    background-color: #28a745;
    color: white;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .notice-container {
        padding: 1rem;
    }

    .change-title {
        font-size: 1.5rem;
    }

    .change-button {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

.video-container {
    position: relative;
    width: 80%;
    padding-bottom: 44.75%;
    /* 16:9 比例 (60% * 0.5625) */
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .video-container {
        width: 90%;
        padding-bottom: 51.25%;
    }
}

.notice-title {
    color: #fff;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.notice-content {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Add New Member Section Styles */
.member-container {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.member-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.text-item {
    border-bottom: 1px solid #666;
    padding-bottom: 1rem;
}

.text-item p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

.member-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .member-container {
        flex-direction: column;
        padding: 1rem;
    }

    .member-text,
    .member-image {
        width: 100%;
    }

    .text-item p {
        font-size: 1rem;
    }
}

.application-title {
    color: #FFD700;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.application-subtitle {
    color: #ffffff;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.highlight {
    color: #FFD700;
}

.application-notice-content {
    color: white;
    margin: 3rem 0rem;
}

.font-weight-bold {
    font-weight: bold;
}

.resource-links li {
    width: 100%;
    max-width: 300px;
    color: white;
    margin: 10px 0px
}

.resource-links hr {
    border: 0;
    border-top: 1px solid #ffffff;
    margin: 5px 0;
    width: 300px;
}

.line-floating-btn {
    position: fixed;
    bottom: 8vh;
    right: 20px;
    width: 120px;
    /*height: 50px;*/
    border-radius: 50%;
    background-color: #00C300;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    text-decoration: none;
    z-index: 1000;
}
.line-floating-btn img {
    width: 100%;
}

.nav-item a{
    background-color: #0869DC;padding: 0 1vw; text-align: center;border-radius: 2vw;margin: 5px;font-size: 28px;line-height: 2.5vw
}

body {margin:0 auto; padding:0; background-color:#F1F1F1; position:relative;}/* */
body,html{ padding-top:0px; overflow-x:hidden;}
* {font-size:18px; line-height:27px; font-family:'微软雅黑';}

/* * {font-size:14px; line-height:25px; color:#606060; font-family:'微软雅黑';} */
*:focus {outline:none;}
img { border:0px;}
ul {margin:0px; *margin-left:0px; }
li {list-style-type:none;}
a { outline:none; outline:0;text-decoration:none;outline-style:none;}
/*a:link {font-size: 14px;color: #ffffff;text-decoration: none;}!* transition:color 0.3s linear;*!*/
/*a:visited {font-size: 14px;color: #858585;text-decoration: none;}!* transition:color 0.3s linear;*!*/
a:hover {font-size: 14px;color:#225EAB;text-decoration:none;}/* transition:color 0.3s linear;*/
p { margin:0px; padding:0px;}
form { margin:0px; padding:0px;}
input[type="button"], input[type="submit"], input[type="reset"] {-webkit-appearance: none;}
textarea { -webkit-appearance: none;}
*{-webkit-tap-highlight-color: transparent;}

.top { margin:0 auto; width:100%; z-index:999; height:9.5vw; overflow:hidden; margin-top:0px; background:url(../../../images/sports/index/topline.png) no-repeat center top; background-size:100% auto;}
.top .logo { margin:0 auto; width:28%; height:9.3vw; text-align:center; display:flex; align-items: center;}
.top .logo img { width:93.5%; height:auto; margin-left: 6%;}
.nav { margin: 0 auto; width: 35%; margin-top: 1.7vw; text-align: center; display: flex; justify-content: space-around;}
.nav a { display: inline-block; width: auto; padding: 0 1vw; line-height: 2.5vw; background-color: #0869DC; transition:0.3s; color: #fff; font-size: 1vw; border-radius: 2vw; margin-right: 0.2vw; margin-left: 0.2vw;}
.nav a:hover { background-color: #D02725;}
.banner { margin: 0 auto; width: 100%; overflow: hidden; margin-top: 2vw;}
.banner img { width: 100%; height: auto;}
.apply { margin:0 auto; width:100%; padding:3vw 0; overflow:hidden;  background-size:100% 100%;}
.apply .title { margin:0 auto; width:50%; text-align:center; overflow:hidden;}
.apply .title img { max-width:70%; height:auto;}
.apply .showarea { margin:0 auto; width:45%; overflow:hidden; margin-top:2vw;}
.apply .showarea ul { width:101%;}
.apply .showarea ul li { float:left; width:24%; margin-right:1%; text-align:center; overflow:hidden; position:relative;}
.apply .showarea ul li .img { width:100%; height:auto; position:relative; z-index:1;}
.apply .showarea ul li .ifnotes { width:80%; position:absolute; top:4vw; margin-left:10%; z-index:2;}
.apply .showarea ul li .ifnotes div { width:100%; text-align:left; font-size:0.9vw; line-height:2vw; color:#1161D5;}
.apply .showarea ul li .ifnotes div img { vertical-align:middle; margin-right:0.5vw;}
.apply .viewmore { margin:0 auto; width:59%; overflow:hidden; margin-top:1.5vw; text-align:center;}
.apply .viewmore img { max-width:50%; height:auto;}
.area1 { width: 100%; padding-bottom:1.5vw; background: url('../../../images/sports/index/bg1.jpg') no-repeat center top; background-size: 100% 100%; overflow: hidden;}
.area1 .title { margin: 0 auto; width: 32.5%; text-align: center; margin-top:2vw;}
.area1 .title img { width: 100%; height: auto;}
.area1 .btarea { margin:0 auto; width:32%; overflow:hidden; text-align:center; margin-top:3vw;}
.area1 .btarea a { display:block; width:100%; height:6.5vw; overflow:hidden; margin-bottom:1.5vw; background:url(../../../images/sports/index/btbg.png) no-repeat center top; background-size:100% auto;}
.area1 .btarea a .bigname { width:100%; text-align:center; overflow:hidden; margin-top:1.5vw; color:#3E2B12; font-size:1.5vw; line-height:1.6vw; font-weight:bold;}
.area1 .btarea a .smallname { width:100%; text-align:center; overflow:hidden; margin-top:0.5vw; color:#3E2B12; font-size:0.9vw; line-height:1.2vw;}
.area2 { width: 100%; padding:8vw 0; background: url('../../../images/sports/index/bg2.jpg') no-repeat center top; background-size: 100% 100%; overflow: hidden;}
.area2 .showarea { margin:0 auto; width:55%; display:flex; justify-content:space-around;}
.area2 .showarea .item { width:27%; text-align:center; font-size:1.1vw; color:#CD9651; font-weight:bold; line-height:1.2vw;}
.area2 .showarea .item img { width:100%; height:auto; margin-bottom:2vw;}
.area3 { width: 100%; padding:5vw 0; background: url('../../../images/sports/index/bg3.jpg') no-repeat center top; background-size: 100% 100%; overflow: hidden;}
.area3 .title { margin:0 auto; width:32.5%; text-align:center;}
.area3 .title img { width:100%; height:auto;}
.area3 .img { margin:0 auto; width:47%; text-align:center; margin-top:4vw;}
.area3 .img img { width:100%; height:auto;}
.area3 .showarea { margin:0 auto; overflow:hidden; width:53%; padding-bottom:6vw; margin-top:2.5vw; background:url(../../../images/sports/index/bg4.png) no-repeat center top; background-size:100% auto;}
.area3 .showarea .stitle { width:100%; overflow:hidden; margin-top:11vw; text-align:center; font-size:2.5vw; color:#C90001; font-weight:bold; line-height:2.6vw;}
.area3 .showarea .inputs { margin:0 auto; width:80%; overflow:hidden; margin-top:3vw; display:flex; justify-content:space-between; align-items:center;}
.area3 .showarea .inputs .linput { width:50%; height:5vw; text-align:left; background:url(../../../images/sports/index/num.png) no-repeat left top; background-size:100% 100%; display:flex; align-items:center; justify-content:space-between;}
.area3 .showarea .inputs .linput .ipw { width:50%; height:2.3vw; font-size:1.6vw; font-weight:bold; color:#444; line-height:2.3vw; text-align:center; border-right:1px solid #868686;}
.area3 .showarea .inputs .linput .input { width:49%; text-align:center;}
.area3 .showarea .inputs .linput .input input { width:80%; text-align:center; font-size:1.6vw; color:#C90001; font-weight:bold; border:0px;}
.area3 .showarea .inputs .tips { width:48%; text-align:right; font-size:2.2vw; line-height:2.3vw; color:#444444; font-weight:bold;}
.area3 .showarea .btsel { margin:0 auto; width:90%; overflow:hidden; margin-top:2vw;}
.area3 .showarea .btsel a { display:block; margin:0 auto; width:80%; height:4.4vw; margin-bottom:0.5vw; text-align:center; display:flex; align-items:center; justify-content:center;}
.area3 .showarea .btsel a { font-size:1.3vw; color:#444444; font-weight:bold;}
.area3 .showarea .btsel a img { width:1.3vw; height:auto; margin-left:1vw;}
.area3 .showarea .btsel a.sbt1 { background:url(../../../images/sports/index/ibg1.png) no-repeat center top; background-size:100% auto;}
.area3 .showarea .btsel a.sbt2 { background:url(../../../images/sports/index/ibg2.png) no-repeat center top; background-size:100% auto;}
.area3 .showarea .btsel a.sbt3 { background:url(../../../images/sports/index/ibg3.png) no-repeat center top; background-size:100% auto;}
.area3 .btshow { margin:0 auto; width:37%; overflow:hidden; margin-top:2vw;}
.area3 .btshow a { display:block; width:100%; height:6.5vw; background:url(../../../images/sports/index/btbg2.png) no-repeat center top; background-size:100% auto; display:flex; align-items:center; justify-content:center;}
.area3 .btshow a { color:#fff; font-size:1.6vw; font-weight:bold;}
.area3 .btshow a img { width:1.6vw; height:auto; margin-left:1vw;}
.area4 { width: 100%; padding:5vw 0 3vw 0; background: url('../../../images/sports/index/bg5.jpg') no-repeat center top; background-size: 100% 100%; overflow: hidden;}
.area4 .showarea { margin:0 auto; width:55%; padding:3vw 0 8vw 0; background:url(../../../images/sports/index/bg6.png) no-repeat center top; background-size:100% auto;}
.area4 .showarea .img { margin:0 auto; width:80%;}
.area4 .showarea .img img { width:100%; height:auto;}
.area4 .showarea .stitle { margin:0 auto; width:80%; display:flex; align-items:center; margin-top:3vw; padding-bottom:1vw; font-size:1.5vw; color:#000; border-bottom:1px solid #C4C4C4;}
.area4 .showarea .stitle img { width:0.7vw; height:0.7vw; margin-right:0.8vw;}
.area4 .showarea .detail { margin:0 auto; width:80%; margin-top:1.5vw; font-size:1.3vw; line-height:2.8vw; color:#444444; text-align:justify;}
@media screen and (max-width:750px){
    ul {margin:0px; *margin-left:0px; margin-left:-16px;}
    .top { height:14vw; background-size:150% auto;}
	.top .logo { margin:0 auto; width:43%; height:14vw;}
	.nav { width: 95%; margin-top: 5vw; }
	.nav a { padding: 0 2vw; line-height: 6vw; font-size: 3vw; border-radius: 4vw; margin-right: 0.2vw; margin-left: 0.2vw;}
    .nav-item a{
        background-color: #0869DC;padding: 0 1vw; text-align: center;border-radius: 2vw;margin: 5px;font-size: 28px;line-height: 8vw
    }

    .line-floating-btn{
        width: 20vw;
    }

    .nav a:hover { background-color: rgb(150, 0, 0); }
	.banner { margin-top: 4vw;}
	.banner img { width: 150%; height: auto; margin-left:-25%;}
    .apply {width:100%; padding:8vw 0; background:url(../../../images/sports/index/bg7.png) no-repeat center top; background-size:170% 100%;}
    .apply .title { width:90%;}
    .apply .title img { width:60%;}
    .apply .showarea { width:100%; margin-top:5vw;}
    .apply .showarea ul { width:103%;}
    .apply .showarea ul li { float:left; width:47%; margin-right:3%; margin-bottom:1vw;}
    .apply .showarea ul li .img { max-width:99%; height:auto; position:relative;}
    .apply .showarea ul li .ifnotes { width:80%; top:17vw; margin-left:10%;}
    .apply .showarea ul li .ifnotes div { font-size:3.3vw; line-height:6vw;}
    .apply .showarea ul li .ifnotes div img { margin-right:2vw;}
    .apply .viewmore { width:90%; margin-top:3vw;}
    .apply .viewmore img { width:50%;}
	.area1 { padding-bottom:5vw; background-size: 100% 100%;}
	.area1 .title { width: 70%; margin-top:5vw;}
	.area1 .btarea { width:80%; margin-top:5vw;}
	.area1 .btarea a { height:15vw; margin-bottom:2vw;}
	.area1 .btarea a .bigname { margin-top:3.5vw; font-size:4vw; line-height:4.2vw;}
	.area1 .btarea a .smallname { margin-top:1vw; font-size:3.2vw; line-height:3.5vw;}
	.area2 { width: 100%; padding:10vw 0; background-size: 150% 100%;}
	.area2 .showarea { width:95%;}
	.area2 .showarea .item { width:27%; font-size:3.2vw; line-height:5vw;}
	.area2 .showarea .item img { width:100%; height:auto; margin-bottom:2vw;}
	.area3 { width: 100%; padding:7vw 0; background-size: 100% 100%;}
	.area3 .title { width:70%;}
	.area3 .img { width:90%; margin-top:5vw;}
	.area3 .showarea { width:95%; padding-bottom:6vw; margin-top:5vw; background-size:100% auto;}
	.area3 .showarea .stitle { margin-top:17vw; font-size:5vw; line-height:5.2vw;}
	.area3 .showarea .inputs { margin:0 auto; width:80%; margin-top:4vw;}
	.area3 .showarea .inputs .linput { width:58%; height:10vw;}
	.area3 .showarea .inputs .linput .ipw { width:50%; height:10vw; font-size:3.3vw; line-height:10vw;}
	.area3 .showarea .inputs .linput .input input { font-size:3.3vw;}
	.area3 .showarea .inputs .tips { width:40%; font-size:3.3vw; line-height:3.5vw;}
	.area3 .showarea .btsel { width:100%; margin-top:5vw;}
	.area3 .showarea .btsel a { width:80%; height:9vw; margin-bottom:2vw;}
	.area3 .showarea .btsel a { font-size:3.1vw;}
	.area3 .showarea .btsel a img { width:3.1vw; margin-left:2vw;}
	.area3 .btshow { width:80%; margin-top:5vw;}
	.area3 .btshow a { width:100%; height:14vw;}
	.area3 .btshow a { font-size:3.5vw;}
	.area3 .btshow a img { width:3.5vw; margin-left:2vw;}
	.area4 { padding:8vw 0 10vw 0;}
	.area4 .showarea { width:90%; padding:5vw 0 14vw 0; background-size:100% 100%;}
	.area4 .showarea .img { width:90%;}
	.area4 .showarea .stitle { width:90%; margin-top:5vw; padding-bottom:2vw; font-size:3.8vw; font-weight:bold;}
	.area4 .showarea .stitle img { width:2vw; height:2vw; margin-right:2vw;}
	.area4 .showarea .detail { width:90%; margin-top:3vw; font-size:3.5vw; line-height:6vw;}
}






