﻿@charset "UTF-8";
html, body {
  font-size: 20px;
}

body {
  font-family: "微軟正黑體", "Microsoft JhengHei", "Arial Black", sans-serif;
  width: 100%;
  color: #444444;
  letter-spacing: 0;
  line-height: 1.5;
  margin: 0px;
  overflow-x: hidden;
}

/*loading*/
.page-loading {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0px;
  top: 0px;
  background-color: #ffffff;
  z-index: 999999;
}
.page-loading .loading-img-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
}
.page-loading .point-block {
  margin-top: 1.5rem;
}
.page-loading .point-block span {
  display: inline-block;
  font-weight: bold;
  font-size: 1.75rem;
  color: #e23b1a;
  letter-spacing: 1px;
}
.page-loading .point-block .point {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 10px;
  margin: 0rem 0.25rem;
  background-color: #e23b1a;
}
.page-loading .point-block .point:nth-last-child(1) {
  animation: loading 0.6s 0.1s linear infinite;
}
.page-loading .point-block .point:nth-last-child(2) {
  animation: loading 0.6s 0.2s linear infinite;
}
.page-loading .point-block .point:nth-last-child(3) {
  animation: loading 0.6s 0.3s linear infinite;
}
.page-loading .point-block .text {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin: 0rem 0.25rem;
  font-weight: bold;
  color: #e23b1a;
}
.page-loading .point-block .text:nth-last-child(1) {
  animation: loading 1.4s 0.1s linear infinite;
}
.page-loading .point-block .text:nth-last-child(2) {
  animation: loading 1.4s 0.2s linear infinite;
}
.page-loading .point-block .text:nth-last-child(3) {
  animation: loading 1.4s 0.3s linear infinite;
}
.page-loading .point-block .text:nth-last-child(4) {
  animation: loading 1.4s 0.4s linear infinite;
}
.page-loading .point-block .text:nth-last-child(5) {
  animation: loading 1.4s 0.5s linear infinite;
}
.page-loading .point-block .text:nth-last-child(6) {
  animation: loading 1.4s 0.6s linear infinite;
}
.page-loading .point-block .text:nth-last-child(7) {
  animation: loading 1.4s 0.7s linear infinite;
}

@keyframes loading {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -10px);
  }
  100% {
    transform: translate(0, 0);
  }
}
/*針對bootstrap調整*/
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0rem;
}

h1 {
  font-size: 0rem;
}

a {
  display: block;
  text-decoration: none;
  color: #444444;
}
a:hover {
  text-decoration: none;
  color: #444444;
  opacity: 0.8;
}

ul {
  padding-left: 0;
  list-style-type: none;
}

p {
  margin-bottom: 0;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  border-radius: 99rem;
  background-color: rgba(0, 0, 0, 0.1);
}

*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
  border-radius: 99rem;
}

*::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 0.25rem;
}
*::-webkit-scrollbar-thumb:hover {
  background: #e23b1a;
}

header, .header {
  position: sticky;
  top: 0rem;
  left: 0rem;
  width: 100%;
  background-color: #e23b1a;
  z-index: 2;
}

footer {
  display: flex;
  position: fixed;
  width: 100%;
  bottom: 0rem;
  left: 0rem;
  background-color: #ffffff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

/*多選*/
.check-list {
  position: relative;
  display: inline-block;
  margin: 0.25rem 0.5rem 0.25rem 0rem;
}
.check-list input[type=checkbox] {
  display: none;
}
.check-list input[type=checkbox] + label {
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding-left: 1.6rem;
  line-height: 1.5;
  margin-bottom: 0rem;
  min-height: 1.25rem;
}
.check-list input[type=checkbox] + label::before {
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  border-radius: 0.25rem;
  left: 0rem;
  border: 0.0625rem solid #888;
  background-color: #ffffff;
  box-shadow: none;
  transition: background-color 0.13s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.check-list input[type=checkbox]:checked + label::before {
  content: "";
  border: 0.0625rem solid #32a4bb;
  background-color: #32a4bb;
  box-shadow: 0rem 0rem 0.1rem 0.2rem rgba(27, 160, 255, 0.2);
  transition: background-color 0.13s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.check-list input[type=checkbox]:checked + label::after {
  width: 0.5rem;
  height: 0.8rem;
  content: "";
  display: inline-block;
  position: absolute;
  top: 45%;
  left: 0.35rem;
  transform: translateY(-50%) rotate(45deg);
  border: 0.25rem solid #fff;
  border-top: none;
  border-left: none;
}

/*單選*/
.radio-list {
  position: relative;
  display: inline-block;
  margin: 0.25rem 0.5rem 0.25rem 0rem;
}
.radio-list input[type=radio] {
  display: none;
}
.radio-list input[type=radio] + label {
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding-left: 1.6rem;
  line-height: 1.5;
  margin-bottom: 0;
  min-height: 1.25rem;
}
.radio-list input[type=radio] + label::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  left: 0rem;
  border: 0.0625rem solid #888888;
  background-color: #ffffff;
  border-radius: 99rem;
  box-shadow: 0rem 0rem 0rem 0rem rgba(255, 255, 255, 0);
  transition: background-color 0.13s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.radio-list input[type=radio] + label::after {
  content: "";
  width: 0.725rem;
  height: 0.725rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  left: 0.25rem;
  background-color: #ffffff;
  border-radius: 99rem;
  transition: background-color 0.13s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.radio-list input[type=radio]:checked + label::before {
  content: "";
  border: 0.0625rem solid #888;
  background-color: #fff;
  box-shadow: 0rem 0rem 0rem 0.125rem rgba(0, 161, 255, 0.3);
  transition: background-color 0.13s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.radio-list input[type=radio]:checked + label::after {
  background-color: #32a4bb;
  transition: background-color 0.13s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/*頁碼*/
.pagination .page-item {
  min-width: 2.5rem;
  text-align: center;
}
.pagination .form-control {
  border-radius: 0rem;
  min-width: 6rem;
}

/*顏色命名*/
/*共用*/
body {
  background-color: #ffffff;
}

.menu-open {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.title {
  font-weight: bold;
}

.nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
.nav-tabs .nav-item {
  margin-right: 0.125rem;
}
.nav-tabs .nav-link {
  white-space: nowrap;
}

.show_block {
  height: calc(100vh - 2.75rem);
}
.show_block.hide_pageTitle .page-title {
  display: none;
}
.show_block.hide_pageTitle .home_iframe {
  height: 100%;
}
.show_block .home_iframe {
  width: 100%;
  vertical-align: middle;
  height: 100%;
}
.show_block .home_pagediv {
  width: 100%;
  vertical-align: middle;
  height: 100%;
}

.btn-secondary {
  background-color: #8f8f8f;
  border-color: #8f8f8f;
}

.btn-primary {
  background-color: #32a4bb;
  border-color: #32a4bb;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #2895ab;
  border-color: #2895ab;
}
.btn-primary:not(:disabled):not(.disabled) {
  background-color: #32a4bb;
  border-color: #32a4bb;
}
.btn-primary:not(:disabled):not(.disabled):hover, .btn-primary:not(:disabled):not(.disabled):focus, .btn-primary:not(:disabled):not(.disabled):active {
  background-color: #2895ab;
  border-color: #2895ab;
}

.btn-info {
  background-color: #27506E;
  border-color: #27506E;
}
.btn-info:hover, .btn-info:focus, .btn-info:active {
  background-color: #3e7faf;
  border-color: #3e7faf;
}
.btn-info:not(:disabled):not(.disabled) {
  background-color: #27506E;
  border-color: #27506E;
}
.btn-info:not(:disabled):not(.disabled):hover, .btn-info:not(:disabled):not(.disabled):focus, .btn-info:not(:disabled):not(.disabled):active {
  background-color: #3e7faf;
  border-color: #3e7faf;
}

.btn-toggle {
  color: #6b7381;
  background: #bdc1c8;
  margin: 0rem 0.5rem 0rem 0rem;
  padding: 0;
  position: relative;
  border: none;
  height: 2.25rem;
  width: 5rem;
  border-radius: 1.5rem;
}
.btn-toggle:before, .btn-toggle:after {
  position: absolute;
  left: 0rem;
  top: 0rem;
  line-height: 2.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.75px;
  text-align: left;
  transition: opacity 0.25s;
}
.btn-toggle:before {
  content: "Off";
  text-align: right;
  left: auto;
  right: 0.75rem;
}
.btn-toggle:after {
  content: "On";
  left: 0.75rem;
  opacity: 0;
}
.btn-toggle.active {
  background-color: #32a4bb;
}
.btn-toggle.active:before {
  opacity: 0;
}
.btn-toggle.active:after {
  opacity: 1;
}
.btn-toggle.active > .handle {
  left: 3rem;
}
.btn-toggle > .handle {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 0.35rem;
  left: 0.35rem;
  border-radius: 1.125rem;
  background: #fff;
  transition: left 0.25s;
}

.index {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
}
.index .background_block {
  width: 100vw;
  height: 100vh;
  position: fixed;
}
.index .background_block .backgroundWeb {
  width: 20vw;
  height: auto;
  position: fixed;
  top: 0;
  right: 0;
}
.index .background_block .backgroundWeb2 {
  width: 20vw;
  height: auto;
  position: fixed;
  bottom: 0;
  left: 0;
}
.index .background_block .backgroundMob {
  width: 100vw;
  height: auto;
  max-height: 10vh;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  object-fit: cover;
  object-position: top;
}
.index .login-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: auto;
  max-width: 540px;
  min-height: 520px;
}
.index .login-card .loginImg {
  width: 80%;
  height: auto;
  margin: auto;
}
.index .login-card .tab-content {
  padding-top: 1rem;
}
.index .login-card .nav-tabs {
  margin-top: 1.5rem;
}
.index .login-card .nav-tabs .nav-item {
  margin-right: 0rem;
}
.index .login-card .nav-tabs .nav-link {
  border: none;
  border-bottom: 6px solid #686868;
  cursor: pointer;
  flex: 1 1 50%;
  border-radius: 0px;
  background-color: transparent;
}
.index .login-card .nav-tabs .nav-link:hover, .index .login-card .nav-tabs .nav-link:active, .index .login-card .nav-tabs .nav-link:focus {
  outline: none;
}
.index .login-card .nav-tabs .nav-link.active {
  color: #e23b1a;
  border: none;
  border-bottom: 6px solid #e23b1a;
  font-weight: bold;
}
.index .login-card .form-group {
  position: relative;
}
.index .login-card .form-group .form-control {
  border: none;
  border-bottom: 1px solid #ced4da;
  border-radius: 0px;
  padding-left: 3rem;
}
.index .login-card .form-group i {
  position: absolute;
  top: 0.7rem;
  font-size: 1.5rem;
}
.index .login-card .form-group i.feather-eye-off {
  cursor: pointer;
  width: 32px;
}
.index .login-card .form-group i.feather-eye-off.active::before {
  content: "\e95c";
}
.index .login-card .form-group .iconBefore {
  left: 0rem;
}
.index .login-card .form-group .iconBefore::after {
  content: "";
  width: 1px;
  height: 1.5rem;
  display: block;
  position: absolute;
  background-color: #444444;
  left: 2.125rem;
  top: 0px;
}
.index .login-card .form-group .iconAfter {
  right: 0rem;
}
.index .login-card .login-btn {
  position: relative;
  border-radius: 99rem;
  background: linear-gradient(to right, #E7211A 0%, #921D22 100%);
  color: #ffffff;
  font-weight: bold;
}
.index .login-card .login-btn i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  right: 1rem;
  border-radius: 99rem;
  font-size: 1.5rem;
  background-color: #ffffff;
  color: #e23b1a;
  text-align: center;
  line-height: 2rem;
}
.index .login-card .otherBtn-block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}
.index .login-card .otherBtn-block .otherBtn {
  position: relative;
  padding: 0.5rem 1rem;
}
.index .login-card .otherBtn-block .otherBtn::after {
  content: "";
  width: 1px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #686868;
  right: -1px;
}
.index .login-card .otherBtn-block .otherBtn:last-child:after {
  display: none;
}
.index .login-card .otherBtn-block .otherBtn i {
  margin-right: 0.25rem;
}
.index .change_pwd_block {
  min-height: auto;
}
.index .change_pwd_block .btn_block .btn {
  padding: 0.375rem 0.75rem;
}
.index .btn_block {
  display: flex;
  align-items: center;
}
.index .btn_block .btn {
  flex: 1 1 auto;
  border-radius: 99rem;
  margin: 0.5rem;
}

.verify_list {
  margin-top: 1.5rem;
}
.verify_list .form-check-label {
  font-size: 1.25rem;
  font-weight: bold;
  vertical-align: middle;
}

header {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
  height: 2.2rem;
}
header .left {
  flex: 1 1 auto;
}
header .right {
  flex: 0 1 auto;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .title {
  font-size: 1.25rem;
  padding-left: 0.5rem;
  margin-left: 0.25rem;
  border-left: 1px solid #999999;
}
header .left, header .center, header .right {
  display: inline-flex;
  align-items: center;
}
header .button_block {
  display: flex;
  align-items: center;
}
header .button_block .btn_list {
  position: relative;
  padding: 0rem 0.375rem;
}
header .button_block .btn_list i {
  font-size: 1.5rem;
  line-height: 1.5;
}
header .button_block .btn_list .number {
  min-width: 1.1rem;
  min-height: 1.1rem;
  display: inline-block;
  position: absolute;
  left: 1.25rem;
  top: 0.25rem;
  border-radius: 99rem;
  background-color: #DF0000;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
  font-size: 0.5rem;
  letter-spacing: -1px;
  padding: 0.1rem 0.15rem;
}

.sub-header {
  background-color: #585865; /*$main-color;*/
  color: #ffffff;
  padding: 0.25rem 0rem;
  line-height: 1.25;
}
.sub-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sub-header .company {
  font-size: 0.875rem;
}
.sub-header .userName {
  font-weight: bold;
}
.sub-header .userName span {
  font-size: 0.875rem;
  margin: 0rem 0.25rem;
  font-weight: normal;
}
.sub-header .change_pwd {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background-color: #ffffff;
  border-radius: 99rem;
  color: #444444 !important;
  font-weight: bold;
}

.hamburger-btn {
  width: 1.75rem;
  height: 1.5rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  z-index: 3;
}
.hamburger-btn:not(.open):hover span:nth-child(1) {
  transform: rotate(-6deg) scaleY(1.1);
}
.hamburger-btn:not(.open):hover span:nth-child(2) {
  transform: rotate(6deg) scaleY(1.1);
}
.hamburger-btn:not(.open):hover span:nth-child(3) {
  transform: rotate(-8deg) scaleY(1.1);
}
.hamburger-btn.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 0.5em;
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 0.5em;
}
.hamburger-btn span {
  width: 100%;
  height: 0.25rem;
  background-color: #444444;
  position: absolute;
  border-radius: 0.125rem;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition-duration: 500ms;
}
.hamburger-btn span:nth-child(1) {
  top: 0px;
  left: 0px;
}
.hamburger-btn span:nth-child(2) {
  top: 0.625em;
  left: 0px;
  opacity: 1;
}
.hamburger-btn span:nth-child(3) {
  bottom: 0px;
  left: 0px;
}

.page-title {
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
  /*padding-bottom: 0.25rem;*/
  font-size: 1rem;
  font-weight: bold;
}
.page-title i {
  font-size: 1.375rem;
  margin-right: 0.25rem;
  cursor: pointer;
}

.menu-open .left-menu {
  left: 0rem;
}

.left-menu {
  position: fixed;
  top: 0rem;
  background-color: #ffffff;
  width: 100vw;
  height: 100vh;
  z-index: 3;
  left: -100vw;
  transition: all 0.5s ease;
}
.left-menu .menu-info-block {
  display: flex;
  background-color: #e23b1a;
  color: #ffffff;
}
.left-menu .menu-info-block .container:not(.people-block) {
  display: flex;
  align-items: center;
}
.left-menu .menu-info-block .MENU_top {
  position: relative;
  width: 4rem;
  height: 3.75rem;
  flex: 0 1 auto;
  background-color: #ffffff;
}
.left-menu .menu-info-block .MENU_top img {
  width: 80%;
  height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.left-menu .menu-info-block .people-block {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 0.25rem 1rem;
}
.left-menu .menu-info-block .people-block .company {
  font-size: 0.875rem;
}
.left-menu .menu-info-block .people-block .name {
  display: block;
}
.left-menu .menu-info-block .people-block .name span {
  letter-spacing: 1px;
  font-size: 0.75rem;
  margin-left: 0.25rem;
  font-weight: normal;
}
.left-menu .logOut {
  padding: 0.375rem 1rem;
  border-top: 1px solid #eeeeee;
  font-size: 1.25rem;
  text-align: center;
  position: absolute;
  bottom: 0rem;
  width: 100%;
  font-weight: bold;
}

.return_home {
  width: 100%;
  height: auto;
  display: inline-block;
  height: 1.75rem;
  margin-right: 0.25rem;
}
.return_home img {
  width: 100%;
  height: 100%;
  object-position: left;
}

.menu-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0rem 1rem;
}
.menu-title .left {
  font-size: 1.375rem;
  font-weight: bold;
  padding-top: 0.5rem;
}
.menu-title .left .return-area {
  cursor: pointer;
}
.menu-title .right {
  color: #888888;
  letter-spacing: 0px;
  font-size: 0.875rem;
}

.menu-block {
  max-height: calc(100vh - 9.5rem);
  overflow-y: auto;
  margin-bottom: 0rem;
}
.menu-block .menu-list {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
  margin: 0.5rem 0.75rem;
}
.menu-block .menu-list img {
  width: 3rem;
  height: 3rem;
}
.menu-block .menu-list .menu-name {
  padding: 1rem;
  flex: 1 1 auto;
  font-size: 1.25rem;
}
.menu-block .menu-list .menu-name.toggle-title {
  padding-right: 2.5rem;
}
.menu-block .menu-list .star-icon {
  cursor: pointer;
  font-size: 1.25rem;
  padding: 0rem 0.75rem;
}
.menu-block .menu-list .star-icon.icon-star_line.active {
  color: #ffc32a;
}
.menu-block .menu-list .star-icon.icon-star_line.active::before {
  content: "\e800";
}
.menu-block .menu-list .app_info {
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
}
.menu-block .toggle-title {
  cursor: pointer;
  padding-right: 2.5rem;
}
.menu-block .toggle-title::after {
  content: "\e930";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: "feather" !important;
  right: 1rem;
}

.card_list_block {
  margin-top: 1rem;
}
.card_list_block .text-right {
  color: #888888;
  letter-spacing: 0px;
  font-size: 0.875rem;
}

.sortable_block {
  margin-top: 0.5rem;
}
.sortable_block .sortable_list {
  position: relative;
  padding: 0.5rem 3.5rem 0.5rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 0.5rem;
  background-color: #ffffff;
}
.sortable_block .sortable_list .table_info {
  cursor: pointer;
  width: 100%;
}
.sortable_block .sortable_list .app_info {
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
}
.sortable_block .sortable_list .app_icon {
  width: 1.5rem;
  height: 1.5rem;
}
.sortable_block .sortable_list .app_name {
  padding: 0rem 0.5rem;
  font-size: 1.25rem;
}
.sortable_block .sortable_list .icon-star_line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  right: 0.75rem;
  font-size: 1.5rem;
}
.sortable_block .sortable_list .icon-star_line.active {
  color: #ffc32a;
}
.sortable_block .sortable_list .icon-star_line.active::before {
  content: "\e800";
}

.square_block {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.square_block .square_list {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  flex: 0 1 auto;
  max-width: 7.5rem;
  min-width: 7.5rem;
  padding: 0rem 0.5rem 0.5rem 0.5rem;
  margin-bottom: 1rem;
}
.square_block .square_list .app_icon {
  cursor: pointer;
  width: 100%;
  height: 100%;
  max-width: 110px;
}
.square_block .favorite_block {
  display: flex;
  align-items: center;
  padding: 0.25rem 0rem;
  max-width: 110px;
}
.square_block .favorite_block .icon-star_line {
  cursor: pointer;
  font-size: 1.375rem;
  line-height: 1;
}
.square_block .favorite_block .icon-star_line:before {
  margin: 0rem;
}
.square_block .favorite_block .icon-star_line.active {
  color: #ffc32a;
}
.square_block .favorite_block .icon-star_line.active::before {
  content: "\e800";
}
.square_block .favorite_block .app_name {
  font-weight: bold;
  font-size: 0.875rem;
  letter-spacing: 0px;
  padding-left: 0.25rem;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.noticeTab {
  margin-bottom: 0rem;
}
.noticeTab .nav-link {
  background-color: #FFE5E5;
}
.noticeTab .nav-link.active {
  background-color: #e23b1a;
  color: #ffffff;
}

.news_block .news_list {
  position: relative;
  display: flex;
  padding: 0.5rem 3rem 0.5rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
  margin: 1rem 0rem;
  padding: 1rem 3rem;
}
.news_block .news_list .read_mark {
  width: 0.85rem;
  height: 0.85rem;
  position: absolute;
  left: 1.25rem;
  top: 1.5rem;
  display: inline-block;
  background-color: #eeeeee;
  border-radius: 99rem;
}
.news_block .news_list .read_mark.active {
  background-color: #DF0000;
}
.news_block .news_list .mews_img {
  width: 20%;
  height: 100%;
  min-width: 20%;
  position: relative;
  padding-top: 15%;
  overflow: hidden;
  border-radius: 0.25rem;
}
.news_block .news_list .mews_img img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.news_block .news_list .news_info {
  display: flex;
  flex-direction: column;
  padding: 0rem 1rem;
}
.news_block .news_list .news_info .date {
  font-size: 0.875rem;
  color: #888888;
}
.news_block .news_list .news_info .info_content {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news_block .news_list .feather-chevron-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.5rem;
  font-size: 1.5rem;
}

@media (max-width: 1199px) {
  .news_block .news_list .mews_img {
    width: 25%;
    height: 100%;
    min-width: 25%;
    padding-top: 20%;
  }
}
@media (max-width: 991px) {
  .menu-block .menu-list {
    border-radius: 0rem;
    box-shadow: none;
    margin: 0rem;
    border-bottom: 1px solid #eeeeee;
  }
  .square_block .square_list {
    width: 25%;
  }
  .square_block .app_name {
    font-size: 0.75rem;
  }
  .news_block .news_list {
    padding: 1rem 2rem;
  }
  .news_block .news_list .read_mark {
    width: 0.725rem;
    height: 0.725rem;
    left: 0.75rem;
    top: 1.25rem;
  }
  .news_block .news_list .news_info .info_content {
    -webkit-line-clamp: 2;
    margin-top: 0.25rem;
  }
  .news_block .news_list .feather-chevron-right {
    right: 1rem;
  }
}
@media (max-width: 575px) {
  .nav-tabs .nav-item {
    flex: 1 1 auto;
    text-align: center;
    margin-right: 0rem;
  }
  .nav-tabs .nav-link {
    border-radius: 0rem;
  }
  .menu-title {
    padding: 0rem;
  }
  .menu-block .menu-list .menu-name {
    padding: 1rem 0rem;
  }
  .index .background_block .backgroundWeb {
    width: 55vw;
  }
  .index .background_block .backgroundWeb2 {
    display: none;
  }
  .index .background_block .backgroundMob {
    display: block;
  }
  .index .login-card {
    width: 100%;
    max-width: 85%;
  }
  .index .login-card .loginImg {
    width: 100%;
    margin: 0px;
  }
  .square_block .square_list {
    width: 33.333%;
    max-width: none;
    min-width: auto;
  }
  .notice .container {
    padding-left: 0rem;
    padding-right: 0rem;
  }
  .news_block .news_list {
    box-shadow: none;
    margin: 0rem;
    padding: 0.75rem 2rem;
    border-bottom: 1px solid #eeeeee;
  }
  .news_block .news_list .mews_img {
    display: none;
    width: 100px;
    height: 100%;
    min-width: 100px;
    padding-top: 20%;
  }
  .news_block .news_list .news_info {
    padding: 0rem;
  }
  .news_block .news_list .news_info .title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .news_block .news_list .news_info .info_content {
    display: none;
  }
}
@media (max-width: 370px) {
  /*LOGIN*/
  .index .login-card {
    max-width: 90%;
  }
  .index .login-card .nav-tabs {
    padding-top: 1rem;
    margin-top: auto;
  }
  .index .login-card .nav-tabs .nav-link {
    padding: 0.5rem;
  }
  .index .login-card .form-group .iconBefore::after {
    display: none;
  }
  .index .login-card .form-group .form-control {
    font-size: 1rem;
    padding-right: 0rem;
    padding-left: 1.85rem;
  }
  .index .login-card .login-btn {
    font-size: 1.25rem;
  }
  .index .login-card .otherBtn-block {
    margin-top: 0.5rem;
  }
  .index .login-card .otherBtn-block .otherBtn {
    padding: 0.5rem;
  }
}
@media (max-width: 350px) {
  header .button_block .btn_list {
    padding: 0.25rem 0.25rem 0rem 0.25rem;
  }
}
@media (max-height: 650px) {
  .index .background_block {
    display: none;
  }
}
@media (max-height: 550px) {
  .index .login-card {
    position: relative;
    left: 0;
    top: 0;
    transform: translate(0%, 0%);
    padding: 1rem 0rem;
    width: 100%;
  }
}
