﻿/*!
 * Bootstrap v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body > header,
body > footer {
    display: block;
}
    
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;	
}

    body > header p,
    body > footer p {
        margin-top: 0;
        margin-bottom: 1rem;
    }

    body > header ul,
    body > footer ul {
        margin-top: 0;
        margin-bottom: 1rem;
    }

        body > header ul ul,
        body > footer ul ul {
            margin-bottom: 0;
        }

    body > header a,
    body > footer a {
        color: #007bff;
        text-decoration: none;
        background-color: transparent;
    }

        body > header a:hover,
        body > footer a:hover {
            color: #0056b3;
            text-decoration: underline;
        }

        body > header a:not([href]):not([tabindex]),
        body > footer a:not([href]):not([tabindex]) {
            color: inherit;
            text-decoration: none;
        }

            body > header a:not([href]):not([tabindex]):hover,
            body > header a:not([href]):not([tabindex]):focus,
            body > footer a:not([href]):not([tabindex]):hover,
            body > footer a:not([href]):not([tabindex]):focus {
                color: inherit;
                text-decoration: none;
            }

            body > header a:not([href]):not([tabindex]):focus,
            body > footer a:not([href]):not([tabindex]):focus {
                outline: 0;
            }

    body > header img,
    body > footer img {
        vertical-align: middle;
        border-style: none;
    }

    body > header .list-unstyled,
    body > footer .list-unstyled {
        padding-left: 0;
        list-style: none;
    }

    body > header .nav-link,
    body > footer .nav-link {
        display: block;
        padding: 0.5rem 1rem;
    }

        body > header .nav-link:hover,
        body > footer .nav-link:hover,
        body > header .nav-link:focus,
        body > footer .nav-link:focus {
            text-decoration: none;
        }

        body > header .nav-link.disabled,
        body > footer .nav-link.disabled {
            color: #6c757d;
            pointer-events: none;
            cursor: default;
        }

    body > header.navbar {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0.5rem 1rem;
    }

    body > header .navbar-nav,
    body > footer .navbar-nav {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
    }

        body > header .navbar-nav .nav-link,
        body > footer .navbar-nav .nav-link {
            padding-right: 0;
            padding-left: 0;
        }

    body > header.navbar-expand {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

        body > header.navbar-expand .navbar-nav {
            -ms-flex-direction: row;
            flex-direction: row;
        }

            body > header.navbar-expand .navbar-nav .nav-link {
                padding-right: 0.5rem;
                padding-left: 0.5rem;
            }

    body > header.navbar-light .navbar-nav .nav-link {
        color: rgba(0, 0, 0, 0.5);
    }

        body > header.navbar-light .navbar-nav .nav-link:hover,
        body > header.navbar-light .navbar-nav .nav-link:focus {
            color: rgba(0, 0, 0, 0.7);
        }

        body > header.navbar-light .navbar-nav .nav-link.disabled {
            color: rgba(0, 0, 0, 0.3);
        }

        body > header.navbar-light .navbar-nav .show > .nav-link,
        body > header.navbar-light .navbar-nav .active > .nav-link,
        body > header.navbar-light .navbar-nav .nav-link.show,
        body > header.navbar-light .navbar-nav .nav-link.active {
            color: rgba(0, 0, 0, 0.9);
        }

    body > header .d-none,
    body > footer .d-none {
        display: none !important;
    }

    body > header .d-block,
    body > footer .d-block {
        display: block !important;
    }

    body > header .d-flex,
    body > footer .d-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
	/*---內容---*/
	body > div.container {
		width: 1552px;
		max-width: 100%;
		margin: 0 auto 0 auto;
		text-align: center !important;
	}	
	body> .container > div > span {
		font-size: 2.3rem; 
		font-weight: 600;color:red
	}
	body > .container > div > p  {
		font-size: 18px;
		font-weight: 600;
		text-align:left;
		text-indent: 2em;
	}
	

@media (min-width: 576px) {
    body > header .d-sm-inline,
    body > footer .d-sm-inline {
        display: inline !important;
    }
}

@media (min-width: 768px) {
    body > header .d-md-none,
    body > footer .d-md-none {
        display: none !important;
    }

    body > header .d-md-block,
    body > footer .d-md-block {
        display: block !important;
    }

    body > header .d-md-flex,
    body > footer .d-md-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
}

@media (min-width: 992px) {
    body > header .d-lg-none,
    body > footer .d-lg-none {
        display: none !important;
    }
}

body > header .flex-row,
body > footer .flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

body > header.flex-column,
body > header .flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

body > header .flex-grow-1,
body > footer .flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}

body > header .justify-content-center,
body > footer .justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

body > header .justify-content-between,
body > footer .justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

body > header .justify-content-around,
body > footer .justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

body > header .align-items-end,
body > footer .align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

@media (min-width: 768px) {
    body > header.flex-md-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
}

body > header .mx-2,
body > footer .mx-2 {
    margin-right: 0.5rem !important;
}

body > header .mx-2,
body > footer .mx-2 {
    margin-left: 0.5rem !important;
}

body > header .mt-3,
body > footer .mt-3 {
    margin-top: 1rem !important;
}

body > header .mb-5,
body > footer .mb-5 {
    margin-bottom: 3rem !important;
}

body > header.p-0 {
    padding: 0 !important;
}

body > header .p-1,
body > footer .p-1 {
    padding: 0.25rem !important;
}

body > footer.text-center {
    text-align: center !important;
}

/* Style.css */

body > header,
body > footer {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif, 'Roboto';
    font-size: 14px;
    line-height: 20px;
    color: #333333;
}

    body > header a,
    body > footer a {
        color: #000000;
        text-decoration: none;
    }

        body > header a:hover,
        body > footer a:hover {
            color: #005580;
            text-decoration: none;
        }

/* _Layout.css */

body > header {
    flex-direction: column !important;
    background-color: white !important;
    box-shadow: none !important;
}

    body > header .tslc-header-main {
        width: 100%;
        height: 92px;
        text-align: center;
        box-shadow: 2px 2px 5px #f4e8db;
    }

    body > header .tslc-header-background {
        width: 1552px;
        max-width: 100%;
        background: url(https://article.sportslottery.com.tw/images/header-background.png) right bottom no-repeat;
        padding: 9px 0;
    }

        body > header .tslc-header-background .tslc-lang {
            padding-right: 6px;
        }

            body > header .tslc-header-background .tslc-lang a {
                display: inline-block;
                border-right: 1px solid #bbb;
                padding-right: 4px;
            }

                body > header .tslc-header-background .tslc-lang a.on {
                    font-weight: bold;
                }

                body > header .tslc-header-background .tslc-lang a:last-child {
                    border: none;
                }

        body > header .tslc-header-background .tslc-btn {
            padding-right: 10px;
            padding-top: 15px;
            white-space: nowrap;
        }

            body > header .tslc-header-background .tslc-btn a {
                white-space: nowrap;
                font-weight: bold;
                padding: 3px 10px;
                border: none;
                vertical-align: top;
                height: 19px;
                line-height: 19px;
                border-radius: 3px;
                color: #000000;
                background: rgb(255,255,255);
                background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
                background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(244,246,242,1) 100%);
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(244,246,242,1)));
                background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(244,246,242,1) 100%);
                background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(244,246,242,1) 100%);
                background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(244,246,242,1) 100%);
                background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(244,246,242,1) 100%);
            }

                body > header .tslc-header-background .tslc-btn a img {
                    padding-right: 3px;
                    vertical-align: baseline;
                }

                body > header .tslc-header-background .tslc-btn a.tslc-retailer-btn {
                    margin-right: 3px;
                    border: solid 1px #777;
                }

    body > header .tslc-header-menu {
        background: #fff;
        border: 1px solid #d7d7d7;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        width: auto;
        height: 32px;
        box-shadow: 2px 2px 5px #d9d9d9;
        margin-top: -16px;
        max-width: 70%;
    }

        body > header .tslc-header-menu > div {
            background: #da2500;
            height: 26px;
            margin: 2px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            border-radius: 7px;
            border: 2px solid #da2500;
            background: rgb(244,88,57);
            background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
            background: -moz-linear-gradient(top, rgba(244,88,57,1) 1%, rgba(218,37,0,1) 45%, rgba(218,37,0,1) 100%);
            background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,rgba(244,88,57,1)), color-stop(45%,rgba(218,37,0,1)), color-stop(100%,rgba(218,37,0,1)));
            background: -webkit-linear-gradient(top, rgba(244,88,57,1) 1%,rgba(218,37,0,1) 45%,rgba(218,37,0,1) 100%);
            background: -o-linear-gradient(top, rgba(244,88,57,1) 1%,rgba(218,37,0,1) 45%,rgba(218,37,0,1) 100%);
            background: -ms-linear-gradient(top, rgba(244,88,57,1) 1%,rgba(218,37,0,1) 45%,rgba(218,37,0,1) 100%);
            background: linear-gradient(to bottom, rgba(244,88,57,1) 1%,rgba(218,37,0,1) 45%,rgba(218,37,0,1) 100%);
        }

        body > header .tslc-header-menu .navbar-nav-scroll {
            padding-right: 0.5rem;
            padding-left: 0.5rem;
            margin-top: -2px;
            margin-bottom: -2px;
        }

        body > header .tslc-header-menu a {
            padding-top: 3px;
            color: white !important;
            font-size: 13px;
            white-space: nowrap;
            height: 26px;
        }

            body > header .tslc-header-menu a.active {
                background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…IgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
                background: -moz-linear-gradient(top, rgba(116,185,64,1) 1%, rgba(83,162,24,1) 45%, rgba(83,162,24,1) 99%);
                background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,rgba(116,185,64,1)), color-stop(45%,rgba(83,162,24,1)), color-stop(99%,rgba(83,162,24,1)));
                background: -webkit-linear-gradient(top, rgba(116,185,64,1) 1%,rgba(83,162,24,1) 45%,rgba(83,162,24,1) 99%);
                background: -o-linear-gradient(top, rgba(116,185,64,1) 1%,rgba(83,162,24,1) 45%,rgba(83,162,24,1) 99%);
                background: -ms-linear-gradient(top, rgba(116,185,64,1) 1%,rgba(83,162,24,1) 45%,rgba(83,162,24,1) 99%);
                background: linear-gradient(to bottom, rgba(116,185,64,1) 1%,rgba(83,162,24,1) 45%,rgba(83,162,24,1) 99%);
                border-top: 1px solid #53a218;
                padding-top: 2px;
                border-bottom: 1px solid #53a218;
            }

body > footer {
    width: 1552px;
    max-width: 100%;
    margin: 0 auto 0 auto;
}

    body > footer * {
        font-size: 12px !important;
        font-weight: normal !important;
    }

    body > footer .tslc-footer-1 {
        background-color: #e4e4e4;
    }

        body > footer .tslc-footer-1 > * {
            height: 40px;
            line-height: 38px;
            white-space: nowrap;
        }

    body > footer .tslc-footer-2 {
        background-color: white;
        padding: 5px 0;
    }

        body > footer .tslc-footer-2 .tslc-title {
            color: #b79a88;
            padding: 5px;
            text-align: left;
        }

            body > footer .tslc-footer-2 .tslc-title img {
                vertical-align: baseline;
            }

        body > footer .tslc-footer-2 li {
            padding: 0 3px 0 16px;
            text-align: left;
        }

        body > footer .tslc-footer-2 .tslc-footer-slogan img {
            max-width: 100%;
            height: auto;
        }

    body > footer .tslc-footer-3 {
        background-color: white;
        border-top: 1px solid #c4c4c4;
        padding-top: 16px;
        padding-bottom: 16px;
    }

        body > footer .tslc-footer-3 span {
            padding: 0 5px;
        }

            body > footer .tslc-footer-3 span + span {
                border-left: solid 1px #ccc;
            }

        body > footer .tslc-footer-3 p {
            padding: 10px;
        }

/* < 內容最大寬度(1552px) + Logo 左邊階(9px) */
@media (max-width: 1560px) {
    body > header .tslc-logo-link {
        padding-left: 9px;
    }
	body> .container > div > span {
		font-size: 1.3rem; 
		font-weight: 600;color:red
	}
	body > .container > div > p  {
		font-size: 18px;
		text-align:left;
		text-indent: 2em;
	}
}
/* < xl (sm + md + lg) */
@media (max-width: 1199.98px) {
    body > header .tslc-header-background {
        background-size: 60% 92px;
        background-position-y: top;
    }
	body> .container > div > span {
		font-size: 1.75rem; 
		font-weight: 600;color:red
	}
	body > .container > div > p  {
		font-size: 18px;
		text-align:left;
	}
    body > header .tslc-header-menu {
        width: auto;
        max-width: 80%;
    }
}
/* < lg (sm + md) */
@media (max-width: 991.98px) {
    body > header .tslc-header-menu {
        max-width: 98%;
        margin-top: 0;
    }

        body > header .tslc-header-menu .tslc-arrow {
            width: 1%;
            color: pink;
            font-size: 20px;
            opacity: 0.5;
        }

        body > header .tslc-header-menu .tslc-arrow-l {
            width: 30px;
            padding: 2px 0 0 0;
        }

        body > header .tslc-header-menu .tslc-arrow-r {
            width: 30px;
            padding: 0;
            text-align: right;
            padding: 2px 0 0 0;
        }

    body > header .navbar-nav-scroll {
        max-width: 100%;
        height: 2.5rem;
        margin-top: .25rem;
        overflow: hidden;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    body > header .navbar-nav {
        padding-bottom: 2rem;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}

/* < md (sm) */
@media (max-width: 767.98px) {
    body > footer .tslc-footer-1 {
        flex-direction: column !important;
    }
}

/* < sm (iPhoneX(375) + iPhoneSE(320)) */
@media (max-width: 575.98px) {
    body > header .tslc-header-main {
        height: 82px;
    }

    body > header .tslc-header-background {
        background-size: 60% 82px;
    }

        body > header .tslc-header-background .tslc-btn {
            padding-top: 5px;
        }

            body > header .tslc-header-background .tslc-btn > div:last-child a {
                display: block;
                padding-top: 1px;
                padding-bottom: 1px;
                text-align: left;
            }

                body > header .tslc-header-background .tslc-btn > div:last-child a + a {
                    margin-top: 3px;
                }

            body > header .tslc-header-background .tslc-btn a.tslc-retailer-btn {
                height: 42px;
                display: block;
                text-align: right;
            }

                body > header .tslc-header-background .tslc-btn a.tslc-retailer-btn span {
                    display: block;
                    line-height: 18px;
                }

    body > header .tslc-logo-link {
        text-align: initial;
    }

        body > header .tslc-logo-link img {
            width: 90%;
        }

    body > header .tslc-header-menu {
        max-width: 95%;
    }

    body > footer .tslc-footer-3 {
        padding-top: 6px;
        padding-bottom: 6px;
    }
}

/* < 375 (iPhoneSE(320)) */
@media (max-width: 374.98px) {
    body > header .tslc-logo-link img {
        width: 100%;
    }

    body > header .tslc-header-background > a {
        padding-right: 5px;
    }

    body > header .tslc-header-background > div {
        width: 164px;
    }

    body > header .tslc-header-menu {
    }
}

/* <= 320 (iPhoneSE(320)) */
@media (max-width: 320px) {
    body > header .tslc-header-menu {
        margin-top: -13px;
    }
	body> .container > div > span {
		font-size: 1.2rem; 
		font-weight: 600;color:red
	}
	body > .container > div > p  {
		font-size: 14px;
		text-align:left;
		text-indent: 2em;
	}
}

/* >= md (md + lg + xl) */
@media (min-width: 768px) {
    body > header.flex-md-row {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
}
