@charset "UTF-8";
/* CSS Document */
@import url(reset.css);
@import url(rwdgrid.css);
@import url(content.css);
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500&family=Noto+Sans+SC:wght@400;500&family=Poppins:wght@400;500;600&family=Roboto:wght@700&family=Arizonia&display=swap");

body {
  background-color: #fff;
  font-size: 16px;
  font-family: "Poppins", "Noto Sans Tc", "Roboto", Helvetica, Arial, "微軟正黑體", Heiti TC, "メイリオ", sans-serif;
}

a {
  color: #000;
  cursor: pointer;
  transition: all 0.4s ease;
}

@media (min-width: 1201px) {
  a:hover {
    color: #ff7611;
  }
}

[class*=col-] {
  float: left;
}

.outerWrap {
  padding-top: 0;
  background-color: transparent;
}

.wrap {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}



/*========== Header ===========*/
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

header .wrap {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-width: 1410px;
}

header .logo {
  width:429px;
  height: 75px;
}

header .logo a {
  display: block;
  height: 100%;
  background: url("../images/logo_lang1.png") no-repeat;
  background-size: contain;
  text-indent: -9999px;
}

header .rightBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  padding-left: 50px;
}

header.scrollDown, header.ins {
  background-color: #fff;
  border-bottom: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

header.scrollDown .logo a, header.ins .logo a {
  background-image: url(../images/logo_lang1.png);
}

header.scrollDown .menu > li a, header.ins .menu > li a {
  color: #000;
}

header.scrollDown .menu > li a::before, header.ins .menu > li a::before {
  background-color: #000;
}

header.scrollDown .search_box a.fa-search, header.ins .search_box a.fa-search {
  color: #000;
  border-color: #000;
}



/*========== Header Menu ===========*/
header .menu {
  margin: 0 -13px;
}

header .menu > li {
  position: relative;
  display: inline-block;
  padding: 0 20px;
	font-size:20px;
}

header .menu > li a {
  position: relative;
  display: block;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 30px 0;
  color: #000;
}

header .menu > li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #ff7611;
}

header .menu > li a.current::before {
  width: 100%;
}




/*========== Header Right ===========*/
header .search_box {
  position: relative;
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
}

header .search_box:hover a.fa-search {
  background: #83694c;
  color: #fff;
}

header .search_box:hover .input {
  top: 0;
  opacity: 1;
}

header .search_box a.fa-search {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  box-sizing: border-box;
  color: #fff;
  transition: all .5s;
}

header .search_box .input {
  position: absolute;
  right: 45px;
  top: -45px;
  opacity: 0;
  transition: all .5s;
}

header .search_box .input input {
  width: 250px;
  height: 45px;
  line-height: 45px;
  border: none;
  padding: 0 20px;
  background: #f3f3f3;
}

header .search_box .input input:focus {
  outline: none;
}

.language_box {
  position: relative;
  margin-left:20px;
}

.language_box .languageBtn {
  position: relative;
  z-index: 2;
}

.language_box .languageBtn a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  font-size: 15px;
  border-radius: 20px;
  padding: 8px 15px;
  color: #fff;
  background-color: #ff7611;
}

.language_box .languageList {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  border-radius: 0 0 20px 20px;
  padding: 25px 0 5px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.language_box .languageList .languageItem a {
  display: block;
  text-align: center;
  font-size: 15px;
  padding: 5px;
}

@media (max-width: 1600px) {
  header .logo {
    width: 344px;
    height: 60px;
  }

  header .menu > li {
    padding: 0 15px;
  }
}

@media (max-width: 1400px) {
  header .logo {
    width: 344px;
    height: 60px;
  }

  header .menu > li {
    padding: 0 12px;
  }
}

@media (min-width: 1201px) {
  header .menu > li.mobile {
    display: none;
  }

  header .menu > li a:hover::before {
    width: 100%;
  }

  header .menu .submenu a:hover {
    color: #fff;
    background-color: #ff7611;
  }

  .language_box .languageList .languageItem a:hover {
    color: #ff7611;
  }
}

@media (min-width: 1201px) and (max-width: 1400px) {
  .language_box .languageBtn a::before {
    content: none;
  }
}

@media (max-width: 1200px) {
  .outerWrap {
    padding-top: 78px;
    padding-bottom: env(safe-area-inset-bottom);
  }

  header {
    display: none;
  }

  .language_box .languageBtn a {
    padding: 4px 15.5px;
  }

  .language_box .languageList {
    padding: 20px 0 5px;
  }

  .language_box .languageList .languageItem a {
    padding: 0 5px;
  }
}



/*========== Banner ===========*/
.bannerArea {
  clear: both;
  position: relative;
  height:100%;
  overflow:hidden;
}

.bannerArea .bannerBox {
  position: relative;
}

.bannerArea .bannerBox img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.bannerArea #banner {
  margin-bottom: 0;
}


@media (max-width: 1080px) {
  .bannerArea {
    margin-top:-80px;
  }
}



/*========== Marquee ===========*/
.gray_bg {
  overflow: hidden;
  border-radius: 50px;
  background-color: #f1f1f1;
  margin-top: 80px;
  z-index: 998;
  height:100px;
}

@media (max-width: 800px) {
  .gray_bg {
    border-radius: 20px;
    margin-top: 90px;
  z-index: 998;
  }
}

.marquee_box {
  width:100%;
  z-index:99;
}

.marquee_box .wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  max-width: 1280px;
  padding-top: 50px;
  padding-bottom: 80px;
}

.marquee_box div.txt {
  line-height:50px;
}

.marquee_box div.txt ul li {
  padding:0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color:#fff;
}

.marquee_box div.txt ul li a {
  font-size:18px;
  color:#000;
}

.marquee_box div.txt ul li a:hover {
  text-decoration:underline;
}



/*========== Mobile ===========*/
.m_menu {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

@media (min-width: 1201px) {
  .m_menu {
    display: none;
  }
}

.m_menu.scrollDown, .m_menu.ins {
  background-color: #fff;
  border-bottom: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.m_menu.scrollDown .m_logo a, .m_menu.ins .m_logo a {
  background-image: url(../images/logo_m_lang1.png);
}

.m_menu.scrollDown .controlBox a.main span, .m_menu.ins .controlBox a.main span {
  background-color: #252525;
}

.m_menu.scrollDown .controlBox a.main span::before, .m_menu.scrollDown .controlBox a.main span::after, .m_menu.ins .controlBox a.main span::before, .m_menu.ins .controlBox a.main span::after {
  background-color: #252525;
}

.m_menu.active .controlBox {
  -ms-flex-pack: end;
      justify-content: flex-end;
  background-color: #fff;
}

.m_menu.active .m_logo {
  display: none;
}

.m_menu.active .loginBox {
  display: block;
}

.m_menu.active .languageBox {
  display: block;
}


.m_menu .m_search {
  text-align:center;
  padding:10px;
}

.m_menu .m_search input[type="text"] {
  display:inline-block;
  vertical-align:middle;
  width:200px;
  height:28px;
  border:1px solid #CCC;
  padding:5px;
}

 .m_menu .m_search a {
  display:inline-block;
  vertical-align:middle;
  width:30px;
  height:30px;
  font-size:18px;
  line-height:30px;
  text-align:center;
  background:#83694c;
  color:#FFF;
}

.m_menu .mask {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
}

.m_menu .controlBox {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  z-index: 99;
  height: 78px;
  padding: 0 77px 0 25px;
}

.m_menu .controlBox a.main {
  position: absolute;
  right: 0;
  top: 0;
  width: 72px;
  height: 78px;
}

.m_menu .controlBox a.main span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: -0.5px;
  width: 22px;
  height: 1px;
  background-color: #000;
}

.m_menu .controlBox a.main span:before, .m_menu .controlBox a.main span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.m_menu .controlBox a.main span:before {
  top: -8px;
}

.m_menu .controlBox a.main span:after {
  bottom: -8px;
}

.m_menu .controlBox a.main.show span {
  background-color: transparent;
}

.m_menu .controlBox a.main.show span:before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #000;
}

.m_menu .controlBox a.main.show span:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #000;
}

.m_menu .m_logo {
  width: 258px;
  height: 45px;
}

.m_menu .m_logo a {
  display: block;
  height: 100%;
  background: url("../images/logo_m_lang1.png") no-repeat;
  background-size: contain;
  text-indent: -9999px;
}

.m_menu .rightBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.m_menu .loginBox {
  display: none;
  position: relative;
}

.m_menu .loginBox .loginToggle {
  position: relative;
  display: inline-block;
  font-size: 15px;
  padding: 4px 15px;
  border-radius: 20px;
  border: 1px solid #7d7d7d;
  color: #000;
}

.m_menu .loginBox .loginToggle::before {
  content: "";
  -webkit-filter: invert(1);
          filter: invert(1);
  position: absolute;
  top: calc(50% - 7.5px);
  left: 11px;
  width: 13px;
  height: 15px;
}

.m_menu .loginBox .loginToggle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: #fff;
}

.m_menu .loginBox .loginToggle.current {
  color: #fff;
  border-color: #e7380d;
  background-color: #e7380d;
}

.m_menu .loginBox .loginToggle.current::before {
  -webkit-filter: invert(0);
          filter: invert(0);
}

.m_menu .language_box {
  margin-left: 4px;
}

@media (max-width: 479px) {
  .m_menu .language_box {
    display: none;
  }
}

.m_menu .hideBox {
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 11;
  width: 100%;
  padding: 100px 25px 87px;
  background-color: #fff;
}

.m_menu .nav > li:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

.m_menu .nav a {
  position: relative;
  display: block;
  font-weight: 500;
  padding: 14px 0;
  color: #000;
}

.m_menu .nav a.current {
  color: #ff7611;
}

.m_menu .m_ico {
  padding: 10px;
  text-align: center;
}

.m_menu .m_ico a {
  margin:0 1px;
  display: inline-block;
  font-size: 20px;
  background: #ff7611;
  color: #fff;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 100%;
}

.m_menu .m_ico a:hover {
  background: #fff;
  color: #ff7611;
}



/*========== Side Menu ===========*/
.classBox {
    position: relative;
    z-index: 4;
}

.sectionTitle {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 10px 10px 0 0;
    padding: 14px 15px;
    color: #fff;
    background-color: #ff7611;
    margin-bottom: 0;
    border-bottom: 0;
}

.classBox .classCurrent {
    background-color: #ff7611;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 10px 30px 10px 10px;
    position: relative;
}

.classBox .classCurrent::before {
    content: ">>";
    color: #fff;
    font-size: 15px;
    font-family: FontAwesome;
    line-height: 1;
    margin-top: -6px;
    position: absolute;
    right: 15px;
    top: 50%;
    z-index: 1;
}

.classBoxRow {
    margin-top: 20px;
    margin-bottom: 50px;
}

.classBoxColumn {
    margin-bottom: 30px;
}

.classBoxColumn .classLink {
    background-color: #fff;
}

.classBoxColumn .classLink .linkHasItems::before {
    content: "";
    position: absolute;
    pointer-events: none;
    top: calc(50% - 3px);
    right: 12px;
    width: 10px;
    height: 6px;
    background: url(../images/side_arrow.png) no-repeat center/contain;
}

.classBoxColumn .classLink .linkHasItems.open {
    color: #ff7611;
}

.classBoxColumn .classLink .linkHasItems.open::before {
    -webkit-transform: scaleY(-1);
            transform: scaleY(-1);
}

.classBoxColumn .classLink .linkHasItems.open + ul {
    position: relative;
    display: block;
}

.classBoxColumn .classLink .linkHasItems.open + ul::before {
    content: "";
    position: absolute;
    pointer-events: none;
    top: -1px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 2px;
    background-color: #ff7611;
}

.classBoxColumn .classLink .linkHasItems.open + ul > li {
    -webkit-animation: aniSlideLeft 0.5s 0.3s ease-out both;
            animation: aniSlideLeft 0.5s 0.3s ease-out both;
}

.classBoxColumn .classLink .linkHasItems.open + ul > li a {
    color: #2f2f2f;
}

.classBoxColumn .classLink .linkHasItems.open + ul > li a.current {
    color: #ff7611;
}

@media (min-width: 1201px) {
    .classBox .classCurrent {
        display: none;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }

    .classBoxColumn .classLink .linkHasItems.open + ul > li a:hover {
        color: #ff7611;
    }

    .classBoxColumn .classLink {
        padding: 15px 20px 20px;
        border-radius: 0 0 10px 10px;
    }

    .classBoxColumn .classLink .linkHasItems.open + ul {
        background-color: #f1f1f1;
    }

    .classBoxColumn .classLink > li {
        border-bottom: 1px solid #c7c7c7;
    }

    .classBoxColumn .classLink > li > a {
        font-size: 18px;
        font-weight: normal;
        padding: 14.25px 33px 14.25px 0;
        color: #333;
    }

    .classBoxColumn .classLink ul {
        display: none;
        padding: 10px 0 11px;
    }

    .classBoxColumn .classLink ul > li > a {
        font-size: 16px;
        line-height:1.6;
        font-weight: normal;
        padding: 3px 12px;
        color: #ff7611;
    }

    .classBoxColumn .classLink a {
        position: relative;
        display: block;
        font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
    }

    .classBoxColumn .classLink a.current {
        color: #ff7611;
    }
  }


@media (min-width: 1201px) and (min-width: 1201px) {
    .classBoxColumn .classLink a:hover {
        color: #ff7611;
    }
}

@media (max-width: 1200px) {
    .sectionTitle {
        display: none;
    }

    .classBoxColumn .classLink {
        width: 100%;
        background-color: #fff;
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1;
    }
    .linkHasItems::before, .classBoxColumn .classLink .linkHasItems::before {
        right: 16px;
        width: 8px;
    }
    .classLink.open, .classBoxColumn .classLink.open {
        display: block;
    }
    .classLink.open > li a, .classBoxColumn .classLink.open > li a {
        padding: 14px 30px 14px 15px;
    }
    .classLink > li:not(:first-child), .classBoxColumn .classLink > li:not(:first-child) {
        border-top: 1px solid #dbdbdb;
    }
    .classLink > li > a.current, .classBoxColumn .classLink > li > a.current {
        color: #ff7611;
    }
    .classLink > li ul, .classBoxColumn .classLink > li ul {
        display: none;
    }
    .classLink a, .classBoxColumn .classLink a {
        color: #2f2f2f;
        background-color: #fff;
        display: block;
        font-size: 14px;
        padding: 14px 15px;
        position: relative;
    }
}



/*========== Top ===========*/
.go_top_area {
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 999;
}

.go_top {
  display: block;
  background: #005d78;
  color: #fff;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 25px;
  border-radius: 99em;
  box-shadow: 1px 1px 3px 0px rgba(255,255,255,0.5);
  -webkit-box-shadow: 1px 1px 3px 0px rgba(255,255,255,0.5);
}

.go_top:hover {
  background: #fff;
  color: #005d78;
}



/*========== Main ===========*/
.main_area {
  position: relative;
  overflow: hidden;
  margin-top: -125px;
}

.content_area_bg {
  margin-top: -40px;
  padding-bottom: 100px;
  background: #f1f1f1;
}

.content_box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
}

.content_box .left_box {
  width: 260px;
}

.content_box .right_box {
  width: calc(100% - 260px);
  padding-left: 51px;
}

@media (max-width: 1200px) {
  .content_box .left_box {
    width: 100%;
  }

  .content_box .right_box {
    width: 100%;
    padding-left: 0;
  }
}

.title_box {
  position: relative;
  margin-bottom: 30px;
}

.title_box .title {
  font-size: 55px;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
  text-transform:uppercase;
}

.title_box .sub_title {
  display: block;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 1.3px;
  margin-top: 8px;
  color: #000;
}

.content_area_bg .title_box {
  text-align: center;
  padding-bottom: 20px;
}

.content_area_bg .guide {
  font-size: 15px;
  color: #333;
  text-align: right;
  padding-bottom: 40px;
}

.content_area_bg .guide a {
  color: #333;
}

.content_area_bg .guide a:hover {
  color: #000;
}


@media (max-width: 800px) {
  .content_area_bg .guide {
    display:none;
  }
}

.share_tool {
  padding-bottom: 8px;
}

.no_data {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

#theForm .error {
  color: #F00;
  font-size:15px;
  font-weight: normal;
}

.col-1 {width:100%;}
.col-2 {width:50%;}
.col-3 {width:33.33%;}
.col-4 {width:25%;}
.col-5 {width:20%;}

@media (max-width: 450px) {
  .col-2, .col-3, .col-4, .col-5 {
    float:none;
    width:100%;
  }
}

.table-custom { border:1px solid #000; }
.table-custom td { border:1px solid #000; padding: 5px; }



/*========== File ===========*/
.att_file_title {
    clear: both;
    text-align: left;
    padding-top: 20px;
    padding-bottom: 5px;
    font-size: 18px;
    font-weight: 500;
}

.att_file_list {
    text-align: left;
    padding-top: 5px;
}

.att_file_list a {
    color: #535353;
    font-size: 16px;
  line-height:1.5;
}

.att_file_list a:hover {
    color: #ccc;
}


/*========== Button ===========*/
.submit {
  border-radius: 30px;
  padding: 10px 30px;
  background:#1b1b1b;
  border:0px;
  font-size:15px;
  color:#fff;
    font-weight: normal;
  cursor:pointer;
}

.submit:hover {
  color:#fff;
  background:#ff7611;
}

.button {
  border-radius: 30px;
  padding: 10px 30px;
  background:#1b1b1b;
  border:0px;
  font-size:15px;
  color:#fff;
    font-weight: normal;
  cursor:pointer;
}

.button:hover {
  color:#fff;
  background:#ff7611;
}

.button_home a {
  position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  max-width: 180px;
  width: 100%;
  min-height: 50px;
  border-radius: 25px;
  padding: 10px 55px 10px 23px;
  color: #fff;
  background-color: #1b1b1b;
}

.button_home a::after {
  content: "";
  position: absolute;
  top: calc(50% - 2.5px);
  right: 24px;
  z-index: 1;
  width: 22px;
  height: 5px;
  -webkit-filter: invert(1);
          filter: invert(1);
  background: url(../images/button_arrow.png) no-repeat;
}

@media (min-width: 1201px) {
  .button_home a:hover {
    background-color: #ff7611;
  }
}



/*========== Pages ===========*/
.Pages {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
}

.Paginator {
    font-size: 13px;
    line-height: 22px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 6px;
}

.Paginator a,.pageList .this-page {
  padding: 2px 6px;
  color: #9a9a9a;
  background: #ffffff;
  border: solid 1px #cecccc;
}

.Paginator a:visited {
  padding: 2px 6px;
  color: #9a9a9a;
  background: #ffffff;
  border: solid 1px #cecccc;
}

.Paginator .AtStart {
  margin-right: 20px;
  padding: 2px 6px;
  background: #ffffff;
  border: solid 1px #cecccc;
  color: #9a9a9a;
}

.Paginator .Prev {
  margin-right: 20px;
  padding: 2px 6px;
  background: #ffffff;
  color: #9a9a9a;
  border: solid 1px #cecccc;
}

.Paginator .break {
  bpadding: 2px 6px;
  border: none;
  background: #ffffff;
  color: #9a9a9a;
}

.Paginator .Next {
  margin-left: 20px;
  padding: 2px 6px;
  color: #9a9a9a;
  background: #ffffff;
  border: solid 1px #cecccc;
}

.Paginator .AtEnd {
  margin-left: 20px;
  padding: 2px 6px;
  background: #ffffff;
  border: solid 1px #cecccc;
  color: #9a9a9a;
}

.Paginator .this-page {
  padding: 2px 6px;
  vertical-align: top;
  background: #ffffff;
  border: solid 1px #cecccc;
  font-weight: bold;
  color: #FF0084;
}

.Paginator a:visited:hover,.Paginator a:hover,.Paginator a:active {
  color: #ffffff;
  background: #0063DC;
  border-color: #ffffff;
}

.Pages div.Results {
  text-align: center;
  margin-top: 8px;
  font: 11px/15px Arial,Helvetica;
  color: #9a9a9a;
}



/*========== Footer ===========*/
footer {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-top: 80px;
  background-color: #3b3b3b;
}

footer .wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  max-width: 1250px;
}

footer .left_box {
  width: 33.333%;
}

footer .right_box {
  width: 66.666%;
  padding-left: 60px;
}

h5.copyright {
  overflow:hidden;
  font-size:15px;
  line-height:1.8;
  font-weight:normal;
  color:#fff;
}

h5.copyright a[href^=tel] {
    color:inherit;
    text-decoration:none;
}

footer .footer_menu_list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  margin: 0 -25px;
}

footer .footer_menu_list .footer_menu_item {
  width: 25%;
  padding: 0 25px 36px;
}

footer .footer_menu_list .footer_menu_item .sub_menu_list {
  margin: -4px 0;
}

footer .footer_menu_list .footer_menu_item .sub_menu_item {
  padding: 4px 0;
}

footer .footer_menu_list .footer_menu_item a {
  font-size: 16px;
  color: #fff;
}

footer .footer_menu_list .title {
  display: block;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}

footer .footer_menu_list .title a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

footer .footer_menu_list .title a:hover {
  color: #ff7611;
}

footer .footer_menu_list .sub_menu_list a {
  font-size: 14px;
  font-weight:normal;
  color: #fff;
}

footer .footer_menu_list .sub_menu_list a:hover {
  color: #b5b5b5;
}

footer .link {
  padding-top: 30px;
}

footer .link a {
  margin:0 3px;
  display: inline-block;
  font-size: 15px;
  color: #FFF;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 100%;
}

footer .link a:hover i {
  color:#b5b5b5;
}

@media (max-width: 960px) {
  footer .left_box {
    width: 100%;
    margin-bottom: 55px;
  }

  footer .right_box {
    display: none;
  }
}

